home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gigarom 4
/
Mac Giga-ROM 4.0 - 1993.toast
/
FILES
/
DEV
/
I-Z
/
TADS v2.0.sit
/
TRIVIAL.T
< prev
Wrap
Text File
|
1992-11-13
|
550b
|
28 lines
/*
* NOTE - this file is simply intended tooact as a listing of all of
* the objects you're required to define in every TADS game. This is
* not a working game; you should not attempt to play it.
*/
init: function;
pardon: function;
init: function
{
local l;
l := ['one' 'two' 'three'];
say( l[2] );
}
pardon: function
{
}
numObj: object;
strObj: object;
againVerb: object verb = 'again' 'g';
takeVerb: object verb = 'take' 'get';
Me: object;
quitVerb: object
verb = 'quit'
action( actor ) = { quit(); abort; }
;